home *** CD-ROM | disk | FTP | other *** search
/ Freelog 125 / Freelog_MarsAvril2015_No125.iso / ViePratique / gnucash / gnucash-2.6.5-setup.exe / {app} / share / aqbanking / dialogs / dlg_editaccount.dlg next >
Extensible Markup Language  |  2014-12-19  |  3KB  |  82 lines

  1. <?xml version="1.0" encoding="utf-8"?>
  2.  
  3. <!--
  4. /***************************************************************************
  5.  copyright   : (C) 2010 by Martin Preuss
  6.  email       : martin@aqbanking.de
  7.  
  8.  ***************************************************************************
  9.  * This file is part of the project "AqBanking".                           *
  10.  * Please see toplevel file COPYING of that project for license details.   *
  11.  ***************************************************************************/
  12. -->
  13.  
  14. <dialog type="dialog" name="ab_edit_account" i18n="aqbanking"
  15.         flags="decorShrinkable decorStretchable decorMaximize decorMinimize decorClose decorMenu" >
  16.   <widget type="vlayout" flags="fillX fillY" >
  17.  
  18.     <widget type="groupBox" text="Account Info" flags="fillX" >
  19.       <widget type="gridLayout" columns="2" flags="fillX" >
  20.       
  21.         <widget type="label" text="Account Number" flags="noWordWrap" />
  22.         <widget type="lineEdit" name="accountNumberEdit" columns="20" flags="fillX" />
  23.   
  24.         <widget type="label" text="Account Name" flags="noWordWrap" />
  25.         <widget type="lineEdit" name="accountNameEdit" columns="20" flags="fillX" />
  26.   
  27.         <widget type="label" text="IBAN" flags="noWordWrap" />
  28.         <widget type="lineEdit" name="ibanEdit" columns="20" flags="fillX" />
  29.   
  30.         <widget type="label" text="Owner Name" flags="noWordWrap" />
  31.         <widget type="lineEdit" name="ownerNameEdit" columns="20" flags="fillX" />
  32.   
  33.         <widget type="label" text="Currency" flags="noWordWrap" />
  34.         <widget type="comboBox" name="currencyCombo"  columns="20" flags="fillX readOnly" />
  35.   
  36.         <widget type="label" text="Account Type" flags="noWordWrap" />
  37.         <widget type="comboBox" name="accountTypeCombo"  columns="20" flags="fillX readOnly" />
  38.  
  39.       </widget>
  40.  
  41.     </widget>
  42.  
  43.     <widget type="groupBox" text="Bank Info" flags="fillX" >
  44.  
  45.       <widget type="gridLayout" columns="2" flags="fillX" >
  46.  
  47.         <widget type="label" text="Country" />
  48.         <widget type="comboBox" name="countryCombo"  columns="20" flags="fillX readOnly" />
  49.  
  50.         <widget type="label" text="Bank Code" flags="noWordWrap" />
  51.         <widget type="hlayout" flags="fillX" >
  52.           <widget type="lineEdit" name="bankCodeEdit" flags="fillX" />
  53.           <widget type="pushButton" name="bankCodeButton" text="Select" />
  54.         </widget>
  55.  
  56.         <widget type="label" text="Bank Name" flags="noWordWrap" />
  57.         <widget type="lineEdit" name="bankNameEdit" columns="20" flags="fillX" />
  58.  
  59.         <widget type="label" text="SWIFT BIC" flags="noWordWrap" />
  60.         <widget type="lineEdit" name="bicEdit" columns="20" flags="fillX" />
  61.  
  62.        <widget type="label" text="Selected User" />
  63.        <widget type="comboBox" name="userCombo"  columns="40" flags="fillX readOnly" />
  64.  
  65.       </widget>
  66.       
  67.     </widget>
  68.  
  69.  
  70.     <!-- wizard controls -->
  71.     <widget type="hLine" flags="fillX" />
  72.     <widget type="hlayout" flags="fillX equalWidth" >
  73.       <widget type="pushButton" text="Help"     name="helpButton" />
  74.       <widget type="hspacer" flags="fillX" />
  75.       <widget type="pushButton" text="Ok"     name="okButton" flags="default" />
  76.       <widget type="pushButton" text="Abort"  name="abortButton" />
  77.     </widget>
  78.  
  79.   </widget>
  80.  
  81. </dialog>
  82.